home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 68K / Mac / Lib / test / tte.py < prev    next >
Text File  |  1996-05-20  |  309b  |  18 lines

  1. # Test TE module, simple version
  2.  
  3. from Win import *
  4. from TE import *
  5. import Qd
  6.  
  7. r = (40, 40, 140, 140)
  8. w = NewWindow(r, "TETextBox test", 1, 0, -1, 1, 0x55555555)
  9. ##w.DrawGrowIcon()
  10.  
  11. r = (10, 10, 90, 90)
  12.  
  13. Qd.SetPort(w)
  14. t = TETextBox("Nobody expects the SPANISH inquisition", r, 1)
  15.  
  16. import time
  17. time.sleep(10)
  18.